Under the hood, an enum a JavaScript object with named properties declared in the enum definition. Do use an enum when you have a small set of fixed values that ... ... <看更多>
const enum NinjaActivity { Espionage, Sabotage, Assassination } // Javascript: But nothing is generated // Typescript: Except if you use it ... ... <看更多>